home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / EDITSTUF.HLP < prev    next >
Text File  |  1988-08-01  |  2KB  |  67 lines

  1. \ EDITSTUF.HLP  Stuff needed by the editor              by Tom Zimmer
  2.  
  3. editor          ( --- )
  4.         The vocabulary that contains all of the editor words. Normally
  5.         you use "line# EDIT", "SED filename" or just "ED" to start
  6.         the editor.
  7.  
  8.         Once in the editor, ESC will allow you to exit. Your changes
  9.         will automatically be saved.
  10.  
  11.         The command SED <enter> by it self will prompt you for the
  12.         name of a file to create.
  13.  
  14.         See also  ED  EDIT  SED  FIX  VIEW
  15.  
  16. tsegb           text segment beginning
  17. lseg            linelist save segment
  18. dseg            delete lines segment
  19. toff            Text offset to end of front section of edit text.
  20. tend            Text offset to front of back section of edit text.
  21.  
  22. seginit         ( --- )
  23.         Initialize the editor segment pointers to reset, that is
  24.         no editing has been done, and the pointers can not be
  25.         valid, so clear them out.
  26.  
  27. mxlln           Maximum length editor will allow entry of text.
  28. maxlines        Maximum number of lines editor will allow.
  29. maxdline        Maximum number of lines we save on delete line.
  30.  
  31. memabort        ( f1 --- )
  32.         Abort if f1 is true, with message that there was not enough
  33.         memory to start up the editor.
  34.  
  35. edinit
  36. tbuf.init       ( --- )
  37.         Initialize the edit segment pointers when the editor is
  38.         started the first time.
  39.  
  40. ovinit          ( --- )
  41.         Pseudonym for tbuf.init, they were different at one time, now
  42.         ovinit just calls tbuf.init.
  43.  
  44. 'sed            Defered word used when starting editor.
  45. 'ed             Defered word used when re-starting editor on an
  46.                 existing file.
  47. 'listing        Defered word used when creating printed listings.
  48.  
  49. sed             ( --- )
  50.         Start the editor, and prompt for a file.
  51.  
  52. ed              ( --- )
  53.         Start the editor on the file that is already open.
  54.  
  55. edit            ( n1 --- )
  56.         Start the editor, on the current file, on the line specified
  57.         by n1.
  58.  
  59. listing         ( --- )
  60.         Create a printed listing of the currently open file.
  61.  
  62. fix             ( | name --- )
  63.         Locate "name" and open the file that contains the source for
  64.         it, then enter the editor on the line where name is defined.
  65.  
  66.  
  67.